home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1996 / MacHack 1996.toast / Hacks / Hacks ’92 / Run & Stumpy / source / aedesc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-06-19  |  283 b   |  20 lines  |  [TEXT/MPS ]

  1. #ifndef aedesc_h
  2. #define aedesc_h
  3.  
  4. #ifndef inttypes_h
  5. #include "inttypes.h"
  6. #endif
  7.  
  8. class aedesc: public AEDesc, public errorsource
  9.   {
  10.     protected:
  11.         aedesc()            {}
  12.         
  13.     public:
  14.         aedesc( DescType, void *, uint32 );
  15.         
  16.         ~aedesc()        { (void)AEDisposeDesc(this); }
  17.   };
  18.  
  19. #endif aedesc_h
  20.